home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mac Power 1997 December
/
MACPOWER-1997-12.ISO.7z
/
MACPOWER-1997-12.ISO
/
AMUG
/
PROGRAMMING
/
Raven 1.2 Examples.sit
/
Raven 1.2 Examples
/
Quill
/
Source
/
DocWindow.h
< prev
next >
Wrap
Text File
|
1997-01-31
|
1KB
|
67 lines
/*
* File: DocWindow.h
* Summary: Quill's document window.
* Written by: Jesse Jones
*
* Copyright ゥ 1996 Jesse Jones.
* For conditions of distribution and use, see copyright notice in ZTypes.h
*
* Change History (most recent first):
*
* <-> 8/09/96 JDJ Created
*/
#pragma once
#include <ZControl.h>
#include <ZDocWindow.h>
#include "CustomClasses.h"
//-----------------------------------
// Forward References
//
class CDocument;
// ===================================================================================
// class CDocWindow
// ===================================================================================
class CDocWindow : public TDocWindow, public MListener<CCustomClasses*> {
typedef TDocWindow Inherited;
//-----------------------------------
// Initialization/Destruction
//
public:
virtual ~CDocWindow();
CDocWindow();
//-----------------------------------
// Inherited API
//
protected:
virtual void OnReanimated();
virtual void OnActivating();
virtual void OnBroadcast(CCustomClasses* const& mesg);
virtual void OnBroadcast(const SDocumentMessage& mesg);
//-----------------------------------
// TReanimator Support
//
public:
static MReanimatable* Create(MReanimatable* parent);
//-----------------------------------
// Internal API
//
protected:
virtual void UpdateCustomClassMenu();
};